home *** CD-ROM | disk | FTP | other *** search
/ User's Choice Windows CD / User's Choice Windows CD (CMS Software)(1993).iso / misc1 / iv26_w30.zip / INTERVIE / X11 / EVENTREP.H < prev    next >
C/C++ Source or Header  |  1991-11-28  |  372b  |  25 lines

  1. /*
  2.  * MS - dependent Event representation.
  3.  */
  4.  
  5. #ifndef eventrep_h
  6. #define eventrep_h
  7.  
  8. #include <windows.h>
  9.  
  10. #define WM_ENTERWINDOW WM_USER
  11. #define WM_LEAVEWINDOW WM_USER + 1
  12.  
  13. class EventRep {
  14. public:
  15.     MSG& Message() { return msg; }
  16. private:
  17.     friend class Interactor;
  18.     friend class Event;
  19.     friend class Sensor;
  20.  
  21.     MSG msg;
  22. };
  23.  
  24. #endif
  25.